home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 1 (Walnut Creek)
/
Aminet - June 1993 [Walnut Creek].iso
/
aminet
/
dev
/
lang
/
ace102.lha
/
bin
/
bas
< prev
next >
Wrap
AmigaDOS Script File
|
1993-04-18
|
2KB
|
81 lines
.key arg1,arg2,arg3
; ** compile, assemble and link an ACE program **
; make sure stack is big enough.
stack 40000
; don't abort script if ACE or APP quits
; with a return code of 10 (ERROR).
failat 11
IF <arg2> GT ""
; at least 2 arguments: <arg1> = compiler options.
; <arg2> = ACE source file.
; <arg3> = extra object module/library to link.
; preprocess source file.
app <arg2>.b ram:t/<arg2>.b
IF NOT ERROR
; compile preprocessed source file.
ace <arg1> ram:t/<arg2>
IF NOT ERROR
; assemble and link
delete > NIL: ram:t/<arg2>.b
a68k ram:t/<arg2>.s
delete > NIL: ram:t/<arg2>.s
blink ram:t/<arg2>.o LIB <arg3>+ACElib:startup.lib+ACElib:db.lib+
ACElib:ami.lib SMALLCODE SMALLDATA
; leave us with the executable (and icon?).
copy ram:t/<arg2> ""
exist ram:t/<arg2>.info
IF NOT ERROR
copy ram:t/<arg2>.info ""
ENDIF
; kill remaining temporary files.
delete > NIL: ram:t/<arg2>#?
ENDIF
ENDIF
ELSE
; no compiler options: <arg1> = ACE source file.
; <arg2> = extra object module/library to link.
app <arg1>.b ram:t/<arg1>.b
IF NOT ERROR
; compile source file.
ace ram:t/<arg1>
IF NOT ERROR
; assemble and link.
delete > NIL: ram:t/<arg1>.b
a68k ram:t/<arg1>.s
delete > NIL: ram:t/<arg1>.s
blink ram:t/<arg1>.o LIB <arg2>+ACElib:startup.lib+ACElib:db.lib+
ACElib:ami.lib SMALLCODE SMALLDATA
; leave us with the executable (and icon?).
copy ram:t/<arg1> ""
exist ram:t/<arg1>.info
IF NOT ERROR
copy ram:t/<arg1>.info ""
ENDIF
; kill remaining temporary files.
delete > NIL: ram:t/<arg1>#?
ENDIF
ENDIF
ENDIF